net/http.http2clientStream.bufPipe (field)

11 uses

	net/http (current package)
		h2_bundle.go#L7030: 	bufPipe       http2pipe // buffered pipe with the flow-controlled response payload
		h2_bundle.go#L8143: 		cs.bufPipe.CloseWithError(err) // no-op if already closed
		h2_bundle.go#L8148: 		cs.bufPipe.CloseWithError(http2errRequestCanceled)
		h2_bundle.go#L9043: 	cs.bufPipe.setBuffer(&http2dataBuffer{expected: res.ContentLength})
		h2_bundle.go#L9098: 	n, err = b.cs.bufPipe.Read(p)
		h2_bundle.go#L9132: 		v := int(cs.inflow.available()) + cs.bufPipe.Len()
		h2_bundle.go#L9160: 	unread := cs.bufPipe.Len()
		h2_bundle.go#L9180: 	cs.bufPipe.BreakWithError(http2errClosedResponseBody)
		h2_bundle.go#L9270: 			if _, err = cs.bufPipe.Write(data); err != nil {
		h2_bundle.go#L9319: 		cs.bufPipe.closeWithErrorAndCode(io.EOF, cs.copyTrailers)
		h2_bundle.go#L9484: 	cs.bufPipe.CloseWithError(serr)